@charset "UTF-8";

/**
 *
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face {
  font-family: 'rBlack';
  src: url('../font/Roboto-Black.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'impact';
  src: url('../font/impact.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* header */
header {
  width: 100%;
  z-index: 22;
}

.header-top {
  background-color: #fff;
  height: 90px;
}

.logo {
  width: 395px;
  float: left;
  margin-top: 20px;
}

.logo img {
  display: block;
  width: 100%;
  transition: all 0.5s;
}

.hotline-wrap {
  float: right;
  display: flex;
  flex-direction: column;
  height: 90px;
  justify-content: center;
}

.hotline-wrap span {
  font-size: 16px;
  color: #000;
  line-height: 24px;
  margin-bottom: 2px;
}

.hotline-wrap p {
  font-size: 30px;
  line-height: 30px;
  color: #004d9d;
  font-family: 'rBlack';
}

.header-nav {
  height: 60px;
  background-color: #004d9d;
}

.nav-ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-ul li>a {
  display: block;
  font-size: 16px;
  padding: 0 32px;
  text-align: center;
  color: #fff;
  position: relative;
  line-height: 56px;
  border-bottom: 4px solid transparent;
}

.nav-ul li:hover a {
  border-bottom-color: #b60023;
}

.nav-ul li.on a {
  border-bottom-color: #b60023;
}

@media (max-width: 1400px) {
  .nav-ul li a {
    padding: 0 20px;
  }
}

@media (max-width: 1200px) {
  .nav-ul li>a {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .header-top {
    height: 70px;
  }

  .logo {
    width: 290px;
    margin-top: 16px;
  }

  .hotline-wrap {
    display: none;
  }

  .header-nav {
    display: none;
  }

  #navToggle {
    display: block;
  }
}

@media (max-width: 449px) {
  .logo {
    width: 275px;
    margin-top: 18px;
  }
}

/* 底部 */
#footer {
  overflow: hidden;
  width: 100%;
  background: #262626;
  padding-top: 40px;
}

.footer-ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-ul li dl dd>a {
  line-height: 38px;
  display: block;
  color: #888;
  font-size: 16px;
}

.code-wrap {
  display: flex;
}

.code-item {
  text-align: center;
  width: 98px;
}

.code-item:last-child {
  margin-right: 0px;
}

.code-item p {
  color: #888;
  line-height: 24px;
  margin-top: 18px;
  text-align: center;
}

.copy {
  border-top: 1px solid #888;
  height: 91px;
  color: #888;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.copy-main p {
  font-size: 16px;
  line-height: 30px;
}

.links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.links-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.links-list a {
  margin-right: 10px;
  color: #808080;
}

.links-list a:last-child {
  margin-right: 0px;
}

@media (max-width: 991px) {
  .copy {
    height: auto;
    padding: 15px 0px;
  }

  .footer-ul {
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0px;
  }

  .footer-ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-ul li dl {
    text-align: center;
  }

  .footer-ul li dl dd {
    display: inline-block;
    margin: 0 4px;
  }

  .footer-ul li dl dd a {
    line-height: 30px;
  }

  .code-item p {
    margin-top: 8px;
  }

  .code-wrap {
    justify-content: center;
  }

  .copy p {
    line-height: 26px;
    margin-bottom: 5px;
  }

  #footer {
    padding-top: 30px;
  }
}

/* 公司简介 */
.hcompany-intro {
  padding-top: 90px;
  overflow: hidden;
  padding-bottom: 90px;
}

.habout-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.habout-left {
  width: 50%;
  padding-right: 50px;
}

.habout-right {
  width: 50%;
  padding-top: 50px;
  padding-right: 48px;
  position: relative;
}

.public-title {
  font-size: 48px;
  line-height: 48px;
  color: #000;
}

.habout-left .public-title {
  margin-bottom: 26px;
}

.habout-subtitle {
  font-size: 20px;
  line-height: 20px;
  color: #004d9d;
}

.habout-des {
  margin-top: 42px;
  line-height: 32px;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-bottom: 45px;
}

.public-more {
  display: block;
  width: 162px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #004d9d;
  font-size: 14px;
  color: #fff;
}

.habout-more {
  margin-bottom: 50px;
}

.data-list {
  display: flex;
  justify-content: space-between;
  padding-top: 45px;
  border-top: 1px solid #dcdcdc;
}

.data-item {
  display: flex;
  align-items: flex-end;
  color: #444;
}

.data-item span {
  font-size: 50px;
  line-height: 50px;
  color: #004d9d;
  margin-right: 12px;
  font-family: 'impact';
}

.data-item p {
  margin-bottom: 2px;
}

.habout-img {
  overflow: hidden;
  width: 100%;
}

.habout-right img {
  width: 100%;
}

.habout-fixed {
  position: absolute;
  width: calc(100% - 48px);
  left: 48px;
  height: calc(100% - 50px);
  top: 0px;
  overflow: hidden;
}

/* 新闻 */
.hnews-wrap {
  background-color: #f0f0f4;
  padding-bottom: 60px;
}

.hnews-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.hnews-list {
  margin-left: -30px;
  margin-right: -30px;
}

.hnews-list li {
  padding: 0 30px;
  margin-bottom: 30px;
  width: 50%;
  float: left;
}

.hnews-item {
  display: flex;
  justify-content: space-between;
}

.hnews-img {
  width: 300px;
  overflow: hidden;
}

.hnews-img img {
  transition: all 0.5s;
  width: 100%;
}

.hnews-info {
  background-color: #fff;
  padding: 50px 30px 0px;
  width: calc(100% - 300px);
}

.hnews-info h3 a {
  display: block;
  font-size: 24px;
  color: #000;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 15px;
}

.hnews-info span {
  font-size: 16px;
  line-height: 16px;
  color: #888;
}

.hnews-info p {
  color: #444;
  margin-top: 10px;
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.hnews-item:hover .hnews-img img {
  transform: scale(1.1);
}

.hnews-item:hover .hnews-info h3>a {
  color: #004d9d;
}

/* 其他 */
.public-wrap {
  padding: 90px 0px;
  overflow: hidden;
}

.other-list {
  display: flex;
}

.other-list li {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.other-list li img {
  width: 100%;
  transition: all 0.5s;
}

.other-info {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  color: #fff;
  padding-top: 45px;
  padding-left: 40px;
  padding-right: 40px;
}

.other-info h3 {
  font-size: 30px;
  line-height: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #c4d5e9;
  margin-bottom: 12px;
}

.other-list li:hover img {
  transform: scale(1.1);
}

/* 内页公司简介 */
.about-wrap .public-title {
  text-align: center;
  margin-bottom: 28px;
}

.about-des {
  color: #444;
  line-height: 36px;
}

.about-des p {
  margin-bottom: 15px;
  text-indent: 32px;
}

.about-des p:last-child {
  margin-bottom: 0px;
}

.about-list {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.about-list li {
  width: calc(50% - 25px);
}

.about-list li:hover .public-img img {
  transform: scale(1.1);
}

/* 新闻中心 */
.news-wrap {
  background-color: #f0f0f4;
  padding-bottom: 0px;
}

.news-list li {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
}

.news-list li:last-child {
  margin-bottom: 0px;
}

.news-item .hnews-info {
  padding-left: 50px;
  padding-right: 50px;
}

/* 产品中心 */
.pro-nav {
  background-color: #fff;
}

.pronav-item {
  color: #444;
  line-height: 78px;
  border-bottom: 2px solid transparent;
  display: inline-block;
}

.pronav-swiper .swiper-slide:hover a {
  color: #004d9d;
}

.pronav-swiper .swiper-slide:hover .pronav-item {}

.pronav-swiper .swiper-slide.on a {
  color: #004d9d;
  border-bottom-color: #004d9d;
}




.pro-list {
  margin-left: -23px;
  margin-right: -23px;
}

.pro-list li {
  padding: 0 23px;
  width: 25%;
  float: left;
  margin-bottom: 46px;
}

.pro-item {
  position: relative;
  overflow: hidden;
}

.pro-item img {
  width: 100%;
  transition: all 0.5s;
}

.pro-info {
  position: absolute;
  left: 0px;
  bottom: 0px;
 /* padding: 0px 15px 24px;*/
  text-align: center;
  width: 100%;
}

.pro-info h3 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 5px;
  color: #000;
}

.pro-info p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  min-height: 48px;
  text-align: center;
}

.pro-item:hover img {
  transform: scale(1.1);
}

.pro-item:hover .pro-info h3 {
  color: #004d9d;
}










/*首页产品中心*/
.homepro {
  background: #f0f0f4;
  padding: 90px 0;
}

.homepro-tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.homepro-titr {
  width: 46%;
}

.homeprotit-swiper .swiper-slide a {
  display: inline-block;
  padding-bottom: 13px;
  border-bottom: 2px solid #f0f0f4;
}

.homeprotit-swiper .swiper-slide:hover a {
  display: inline-block;
  border-bottom: 2px solid #004d9d;
  color: #004d9d;
  padding-bottom: 13px;
}

.homepro-box {
  margin-top: 50px;
}

.homepro-box .swiper-slide a {
  display: block;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.homepro-box .swiper-slide img {
  width: 100%;
  transition: all 0.4s;
}

.homepro-box .swiper-slide .homepro-txt {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.homepro-box .swiper-slide .homepro-txt h3 {
  font-size: 20px;
  white-space: nowrap;
}

.homepro-box .swiper-slide .homepro-txt h4 {
  white-space: nowrap;
  margin-top: 15px;
}

.homepro-box .swiper-slide:hover .homepro-txt h3 {
  color: #004d9d;
}

.homepro-box .swiper-slide:hover img {
  transform: scale(1.1);
}

.homeadv {
  background: #fff;
  padding: 90px 0;
}

.homeadv-bg {
  color: #fff;
  background: url("../img/hpro-advbg.jpg") no-repeat top center;
}

.homeadv-l {
  width: 50%;
  padding: 90px 170px 90px 80px;
}

.homeadv-tit h3 {
  font-size: 48px;
}

.homeadv-tit h4 {
  margin-top: 24px;
  line-height: 33px;
}

.homeadv-ul li {
  width: 148px;
  height: 96px;
  border: 1px solid #ffffff;
  margin-bottom: 24px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.homeadv-ul {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.homeadv-ull {
  align-self: flex-end;
}

.homeadv-ull h4 {
  margin-top: 6px;
}

.homeadv-ul li:hover {
  background: #004d9d;
  border: 1px solid #004d9d;

}

.homeadv-ul li {
  cursor: pointer;
}



@media (max-width: 1200px) {
  .pro-list {
    margin-left: -15px;
    margin-right: -15px;
  }

  .pro-list li {
    padding: 0 15px;
  }

  .pro-info {
    padding-bottom: 15px;
  }

  .public-title {
    font-size: 40px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  .news-wrap {
    padding-top: 40px;
  }

  .pro-list li {
    width: 50%;
    margin-bottom: 20px;
  }

  .news-item {
    flex-wrap: wrap;
    width: 100%;
  }

  .news-item .hnews-img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .news-item .hnews-info {
    width: 100%;
    padding: 25px;
  }

  .news-list li {
    margin-bottom: 20px;
  }

  .about-wrap {
    padding-top: 35px;
    padding-bottom: 40px;
  }

  .public-title {
    font-size: 30px;
    line-height: 30px;
  }

  .about-wrap .public-title {
    margin-bottom: 20px;
  }

  .about-des {
    line-height: 30px;
  }

  .about-list {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .about-list li {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-list li:last-child {
    margin-bottom: 0px;
  }
}

@media (max-width: 499px) {
  .pro-list {
    margin-left: 0px;
    margin-right: 0px;
  }

  .pro-list li {
    width: 100%;
    padding: 0px;
  }

  .hnews-info h3 a {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .news-item .hnews-info {
    padding: 15px;
  }

  .hnews-info p {
    margin-top: 5px;
    line-height: 30px;
  }
}







/*首页响应*/
@media(max-width:1700px) {
  .homeadv-l {
    width: 60%;
  }
}

@media(max-width:1400px) {
  .homeadv-l {
    width: 60%;
    padding: 90px 80px;
  }

  .public-title {
    font-size: 35px;
  }

  .habout-des {
    margin-top: 20px;
    line-height: 25px;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .habout-more {
    margin-bottom: 20px;
  }

  .data-list {
    padding-top: 15px;
  }
}

@media(max-width:1200px) {
  .homeadv-l {
    width: 60%;
    padding: 90px 40px;
  }

  .hnews-list li {
    width: 100%;
  }

  .habout-main {
    display: block;
  }

  .habout-left {
    width: 100%;
    padding: 0;
  }

  .habout-right {
    width: 100%;
  }

  .habout-right {
    padding-right: 0;
  }
}

@media(max-width:991px) {
  .homepro {
    padding: 40px 0;
  }

  .homepro-box {
    margin-top: 30px;
  }

  .habout-subtitle {
    font-size: 16px;
    line-height: 24px;
    color: #004d9d;
  }

  .data-item span {
    font-size: 26px;
  }

  .homeadv-l {
    width: 100%;
    padding: 30px 30px;
  }

  .homeadv-ul li {
    width: 30%;
  }

  .homeadv {
    padding: 40px 0 0;
  }

  .other-list {
    display: block;
  }

  .hcompany-intro {
    padding: 40px 0;
  }
}

@media(max-width:600px) {
  .homepro {
    padding: 40px 0;
  }

  .homepro-box {
    margin-top: 30px;
  }

  .homeadv-l {
    width: 100%;
    padding: 30px 30px;
  }

  .homeadv-ul li {
    width: 30%;
  }

  .homeadv-tit h3 {
    font-size: 28px;
  }

  .homeadv-tit h4 {
    margin-top: 10px;
    line-height: 26px;
  }

  .homeadv-ul {
    margin-top: 15px;

  }

  .homeadv-ul li {
    width: 48%;
  }

  .hnews-item {
    display: block;
  }

  .hnews-img {
    width: 100%;
  }

  .hnews-info {
    width: 100%;
    padding: 30px;
  }

  .public-wrap {
    padding: 40px 0;
  }

  .hnews-wrap {
    padding: 40px 0 0px;
  }
}

.inner-main img {
  max-width: 100%;
}
/*手机电脑切换*/
.dc-mo {
  display: none;
}

@media (max-width: 991px) {
  .dc-mo {
    display: block;
  }

  .dc-pc {
    display: none;
  }
}

#pbanner .swiper-slide img {
  width: 100%;
  display: block;
}

.message-main {
  /*width: 1200px;*/
  padding: 48px 62px;
  min-height: 440px;
  background-color: #fff;
  max-width: 100%;
}

.message-main h2 {
  text-align: center;
  font-size: 34px;
  padding: 20px 0;
}

.message-left-ad h4{
  text-align: center;
  font-size: 28px;
  color: #000;
  font-weight: bold;
  padding-bottom: 30px;
}

.message-left-ad p {
  line-height: 30px;
}

.home-about-form {
  padding-top: 24px;
}

.message-form-input {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.message-form-input label {
  width: calc(50% - 20px);
  margin-top: 7px;
}

.message-form-input input {
  height: 44px;
}

.message-textarea {
  width: 100%;
  padding-top: 7px;
}

.message-form-but {
  padding-top: 28px;
  text-align: center;
}

.message-form-but a {
  display: inline-block;
  height: 44px;
  width: 160px;
  color: #fff;
  line-height: 44px;
  text-align: center;
  border: 1px solid #004d9d;
  background-color: #004d9d;
}
.inner-main img {
  max-width: 100%;
}

/*联系我们*/


.contact-us {
  display: flex;
  justify-content: space-between;
  background-color: #eee;
}

.contact-us:hover {
  color: #fff;
  background-color: #004d9d;
}

.contact-info {
  width: 550px;
  text-align: center;
  padding: 40px 0 30px;
}

.contact-info h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  color: #b60023;
  padding-bottom: 40px;
}

.contact-us:hover h2 ,.contact-us:hover p{
  color: #fff;
}


.contact-info div {
  display: inline-block;
  text-align: left;
}

.contact-info p {
  line-height: 32px;
}

.contact-img img, .contact-map img {
  max-width: 100%;
}

.contact-img:hover img {
  transform: scale(1.1);
}

.contact-map {
  padding-top: 50px;
}

.contact-map:hover img {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .contact-us {
    flex-direction: column;
    background-color: #fff;
  }

  .contact-us:hover {
    background-color: #fff;
  }


  .contact-us:hover .contact-info {
    color: #fff;
    background-color: #004d9d;
  }


  .contact-info {
    width: 100%;
    background-color: #eee;
    margin-bottom: 30px;
  }

  .contact-img img {
    width: 100%;
  }

  .contact-map {
    padding-top: 30px;
  }
}
.inner-content .img img {
  transition: all 0.4s;
}
.inner-content .img {
  overflow: hidden;
}
